home *** CD-ROM | disk | FTP | other *** search
- /* errno.h standard header */
- #ifndef _ERRNO
- #define _ERRNO
- #ifndef _YVALS
- #include <yvals.h>
- #endif
-
- #if __MWERKS__
- #pragma options align=mac68k
- #endif
-
- /* error codes */
- #define EDOM _EDOM
- #define ERANGE _ERANGE
- #define EFPOS _EFPOS
- #define EILSEQ _EILSEQ
- /* ADD YOURS HERE */
- #define _NERR _ERRMAX /* one more than last code */
- /* declarations */
- extern int errno;
-
- #if __MWERKS__
- #pragma options align=reset
- #endif
-
- #endif
-
- /*
- * Copyright (c) 1994 by P.J. Plauger. ALL RIGHTS RESERVED.
- * Consult your license regarding permissions and restrictions.
- */
-
-